home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue29 / web / CHAINED.DPR < prev    next >
Encoding:
Text File  |  1997-07-30  |  317 b   |  21 lines

  1. library chained;
  2.  
  3. uses
  4.   HTTPApp,
  5.   ISAPIApp,
  6.   fchained in 'fchained.pas' {WebModule1: TWebModule};
  7.  
  8. {$R *.RES}
  9.  
  10. exports
  11.   GetExtensionVersion,
  12.   HttpExtensionProc,
  13.   TerminateExtension;
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.CreateForm(TWebModule1, WebModule1);
  18.   Application.Run;
  19. end.
  20.  
  21.